home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-27 | 4.3 KB | 200 lines | [TEXT/TeX+] |
- # (c) 1991-95 by Wilfried Ricken
- # Hagenaustraße 41
- # 45138 Essen
- # Germany
-
- # First specify the physical devices to use for the different logical devices.
- # "default" will be replaced by the name of the currently selected printer.
-
- Preview := 'Standard at lower resolution';
- DiskFile := default;
- Printer := default;
-
- # Now tell MacDVI about the mode_defs known to METAFONT. Be sure that the
- # resolutions specified here match the resolutions specified in the .mf file.
-
- mode_defs =
- MacTrueSize := (72, 72);
- MacScreen := (174, 174);
- ImageWriterII := (160, 144);
- FaxPrint := (216, 216);
- ImageWriterLQ := (216, 216);
- PDFWriter := (288, 288);
- Standard := (300, 300);
- TrueLaser := (300, 300);
- StyleWriter := (360, 360);
- Xante := (600, 600);
- UltreSetter := (1200, 1200);
- LinoType := (2540, 2540);
- enddef;
-
- # Last but not least here are the descriptions of the physical devices known to MacDVI.
- # Be sure that every physical device is connected to a mode_def from the list above.
-
- device_def 'MacTrueSize' =
- device_type := Unknown;
- mode_def := MacTrueSize;
- enddef;
-
- device_def 'MacScreen' =
- device_type := Unknown;
- mode_def := MacScreen;
- enddef;
-
- device_def 'Standard' =
- device_type := Unknown;
- mode_def := Standard;
- enddef;
-
- device_def 'Standard at lower resolution' =
- device_type := Unknown;
- mode_def := Standard * 1 / 1.728;
- enddef;
-
- device_def 'Standard at higher resolution' =
- device_type := Unknown;
- mode_def := Standard * 2;
- enddef;
-
- device_def 'CommonGround' =
- device_type := QuickDraw;
- mode_def := MacTrueSize;
- enddef;
-
- device_def 'Apple Color Printer' =
- device_type := QuickDraw;
- mode_def := StyleWriter;
- enddef;
-
- device_def 'AppleTalk ImageWriter' =
- device_type := QuickDraw;
- mode_def := ImageWriterII;
- enddef;
-
- device_def 'DeskJet' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'DeskJet 500' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'DeskWriter' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'DW 550C 2.0 (AppleTalk)' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'DW 550C 2.0 (Seriell)' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'DiskPrint' =
- device_type := QuickDraw;
- mode_def := MacTrueSize;
- enddef;
-
- device_def 'Fax Sender' =
- device_type := QuickDraw;
- mode_def := ImageWriterLQ;
- enddef;
-
- device_def 'FaxPrint' =
- device_type := QuickDraw;
- mode_def := FaxPrint;
- enddef;
-
- device_def 'ImageWriter' =
- device_type := QuickDraw;
- mode_def := ImageWriterII;
- enddef;
-
- device_def 'LaserWriter' =
- device_type := PostScript;
- mode_def := Standard;
- page_order := "1f2r";
- enddef;
-
- device_def 'LaserWriter 8' =
- device_type := PostScript;
- mode_def := Standard;
- page_order := "1f2r";
- enddef;
-
- device_def 'LaserWriter 300' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'PDFWriter' =
- device_type := QuickDraw;
- mode_def := PDFWriter;
- enddef;
-
- device_def 'LQ AppleTalk ImageWriter' =
- device_type := QuickDraw;
- mode_def := ImageWriterLQ;
- enddef;
-
- device_def 'LQ ImageWriter' =
- device_type := QuickDraw;
- mode_def := ImageWriterLQ;
- enddef;
-
- device_def 'LW Select 300' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'LW Select 310' =
- device_type := PostScript;
- mode_def := Standard;
- enddef;
-
- device_def 'Personal LaserWriter SC' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'Personal LW LS' =
- device_type := QuickDraw;
- mode_def := Standard;
- enddef;
-
- device_def 'StyleWriter' =
- device_type := QuickDraw;
- mode_def := StyleWriter; # you may also use Standard * 1.2
- enddef;
-
- device_def 'StyleWriter II' =
- device_type := QuickDraw;
- mode_def := StyleWriter; # you may also use Standard * 1.2
- enddef;
-
- device_def 'TrueLaser' =
- device_type := PostScript;
- mode_def := TrueLaser;
- enddef;
-
- device_def 'Xante' =
- device_type := PostScript;
- mode_def := Xante;
- enddef;
-
- device_def 'UltreSetter' =
- device_type := PostScript;
- mode_def := UltreSetter;
- enddef;
-
- device_def 'LinoType' =
- device_type := PostScript;
- mode_def := LinoType;
- enddef;
-